home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / misc / systemid.lha / SystemIdle / makefile < prev    next >
Makefile  |  1995-10-08  |  256b  |  15 lines

  1. compileargs = -fbaserel -noixemul -x none -s -m68000
  2. objects = test.o idle.o
  3.  
  4. test : test.o idle.o
  5.     gcc -o test $(compileargs) $(objects)
  6.  
  7. test.o : test.c
  8.     gcc -c $(compileargs) test.c
  9.  
  10. idle.o : idle.c
  11.     gcc -c $(compileargs) idle.c
  12.  
  13. clean :
  14.     rm $(objects)
  15.